home *** CD-ROM | disk | FTP | other *** search
/ SIGGRAPH 2002 Course Notes / SIGGRAPH 2002 - Course Notes - Disc 1.iso / pc / notes / 18 / supplemental_material / SVG_Ex / basicShapes / text2.svg < prev   
Encoding:
Extensible Markup Language  |  2001-12-06  |  466 b   |  15 lines

  1. <?xml version="1.0" encoding="iso-8859-1"?>
  2. <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
  3.      "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
  4. <svg xmlns="http://www.w3.org/2000/svg">
  5.   <g font-size="20">
  6.     <text x="20px" y="50"> <tref xlink:href="#Hello" /> </text> 
  7.   </g>
  8.  <defs>
  9.     <text id="Hello"> Hello </text>
  10.  </defs>
  11.  <text x="100" y="400" font-size="26" fill="darkcyan"> 
  12.      <tref xlink:href="#Hello" />
  13.  </text>
  14. </svg>
  15.